home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / include / clib / example_protos.h
Encoding:
C/C++ Source or Header  |  2000-06-25  |  477 b   |  20 lines

  1. /*
  2. **      $VER: example_protos.h 1.0 (25.06.2000)
  3. **
  4. **      prototypes for example.library
  5. */
  6.  
  7. #ifndef CLIB_EXAMPLE_PROTOS_H
  8. #define CLIB_EXAMPLE_PROTOS_H
  9.  
  10. #ifndef LIBRARIES_EXAMPLE_H
  11. #include <libraries/example.h>
  12. #endif
  13.  
  14. LONG ex_TestRequest(STRPTR title, STRPTR body, STRPTR gadgets);
  15.  
  16. LONG ex_TestRequest2(STRPTR title, STRPTR format, STRPTR gadgets, ...);
  17. LONG ex_TestRequest2A(STRPTR title, STRPTR format, STRPTR gadgets, APTR data);
  18.  
  19. #endif /* CLIB_EXAMPLE_PROTOS_H */
  20.